home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / STRPCPY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-09  |  164 b   |  10 lines

  1. char *strpcpy(dest, start, end)
  2.     register char *dest, *start, *end;
  3.     {
  4.     char *p = dest;
  5.  
  6.     while((start <= end) && (*dest++ = *start++))
  7.         ;
  8.     return(p);
  9.     }
  10.